Mention -s option in usage.
authoremellor@ewan <emellor@ewan>
Mon, 10 Oct 2005 17:59:57 +0000 (18:59 +0100)
committeremellor@ewan <emellor@ewan>
Mon, 10 Oct 2005 17:59:57 +0000 (18:59 +0100)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/xenstore/xenstore_client.c

index 5f69da53c94ff139d38902550861c34f215ad168..e4ef31caec4a1f236809146cabc73ba100e4142e 100644 (file)
@@ -20,11 +20,11 @@ static void
 usage(const char *progname)
 {
 #if defined(CLIENT_read)
-    errx(1, "Usage: %s [-h] [-p] key [...]", progname);
+    errx(1, "Usage: %s [-h] [-p] [-s] key [...]", progname);
 #elif defined(CLIENT_write)
-    errx(1, "Usage: %s [-h] key value [...]", progname);
+    errx(1, "Usage: %s [-h] [-s] key value [...]", progname);
 #elif defined(CLIENT_rm) || defined(CLIENT_exists) || defined(CLIENT_list)
-    errx(1, "Usage: %s [-h] key [...]", progname);
+    errx(1, "Usage: %s [-h] [-s] key [...]", progname);
 #endif
 }